Uses of Interface
edu.claflin.finder.algo.edgebetweennessutils.Predicate
-
Packages that use Predicate Package Description edu.claflin.finder.algo.edgebetweennessutils -
-
Uses of Predicate in edu.claflin.finder.algo.edgebetweennessutils
Classes in edu.claflin.finder.algo.edgebetweennessutils that implement Predicate Modifier and Type Class Description private static classPredicates.AndPredicate<T>private static classPredicates.CompositionPredicate<A,B>private static classPredicates.ContainsPatternPredicateprivate static classPredicates.InPredicate<T>private static classPredicates.InstanceOfPredicateprivate static classPredicates.IsEqualToPredicate<T>private static classPredicates.NotPredicate<T>(package private) static classPredicates.ObjectPredicateprivate static classPredicates.OrPredicate<T>private static classPredicates.SubtypeOfPredicateFields in edu.claflin.finder.algo.edgebetweennessutils declared as Predicate Modifier and Type Field Description (package private) Predicate<B>Predicates.CompositionPredicate. pprivate Predicate<T>Functions.PredicateFunction. predicate(package private) Predicate<T>Predicates.NotPredicate. predicateFields in edu.claflin.finder.algo.edgebetweennessutils with type parameters of type Predicate Modifier and Type Field Description private java.util.List<? extends Predicate<? super T>>Predicates.AndPredicate. componentsprivate java.util.List<? extends Predicate<? super T>>Predicates.OrPredicate. componentsMethods in edu.claflin.finder.algo.edgebetweennessutils that return Predicate Modifier and Type Method Description static <T> Predicate<T>Predicates. alwaysFalse()static <T> Predicate<T>Predicates. alwaysTrue()static <T> Predicate<T>Predicates. and(Predicate<? super T>... components)static <T> Predicate<T>Predicates. and(Predicate<? super T> first, Predicate<? super T> second)static <T> Predicate<T>Predicates. and(java.lang.Iterable<? extends Predicate<? super T>> components)static <A,B>
Predicate<A>Predicates. compose(Predicate<B> predicate, Function<A,? extends B> function)static Predicate<java.lang.CharSequence>Predicates. contains(java.util.regex.Pattern pattern)static <T> Predicate<T>Predicates. equalTo(T target)static <T> Predicate<T>Predicates. in(java.util.Collection<? extends T> target)static Predicate<java.lang.Object>Predicates. instanceOf(java.lang.Class<?> clazz)static <T> Predicate<T>Predicates. isNull()static <T> Predicate<T>Predicates. not(Predicate<T> predicate)static <T> Predicate<T>Predicates. notNull()static <T> Predicate<T>Predicates. or(Predicate<? super T>... components)static <T> Predicate<T>Predicates. or(Predicate<? super T> first, Predicate<? super T> second)static <T> Predicate<T>Predicates. or(java.lang.Iterable<? extends Predicate<? super T>> components)static Predicate<java.lang.Class<?>>Predicates. subtypeOf(java.lang.Class<?> clazz)(package private) <T> Predicate<T>Predicates.ObjectPredicate. withNarrowedType()Methods in edu.claflin.finder.algo.edgebetweennessutils that return types with arguments of type Predicate Modifier and Type Method Description private static <T> java.util.List<Predicate<? super T>>Predicates. asList(Predicate<? super T> first, Predicate<? super T> second)Methods in edu.claflin.finder.algo.edgebetweennessutils with parameters of type Predicate Modifier and Type Method Description static <T> Predicate<T>Predicates. and(Predicate<? super T>... components)static <T> Predicate<T>Predicates. and(Predicate<? super T> first, Predicate<? super T> second)private static <T> java.util.List<Predicate<? super T>>Predicates. asList(Predicate<? super T> first, Predicate<? super T> second)static <A,B>
Predicate<A>Predicates. compose(Predicate<B> predicate, Function<A,? extends B> function)static <T> Function<T,java.lang.Boolean>Functions. forPredicate(Predicate<T> predicate)static <T> Predicate<T>Predicates. not(Predicate<T> predicate)static <T> Predicate<T>Predicates. or(Predicate<? super T>... components)static <T> Predicate<T>Predicates. or(Predicate<? super T> first, Predicate<? super T> second)Method parameters in edu.claflin.finder.algo.edgebetweennessutils with type arguments of type Predicate Modifier and Type Method Description static <T> Predicate<T>Predicates. and(java.lang.Iterable<? extends Predicate<? super T>> components)static <T> Predicate<T>Predicates. or(java.lang.Iterable<? extends Predicate<? super T>> components)Constructors in edu.claflin.finder.algo.edgebetweennessutils with parameters of type Predicate Constructor Description CompositionPredicate(Predicate<B> p, Function<A,? extends B> f)NotPredicate(Predicate<T> predicate)PredicateFunction(Predicate<T> predicate)Constructor parameters in edu.claflin.finder.algo.edgebetweennessutils with type arguments of type Predicate Constructor Description AndPredicate(java.util.List<? extends Predicate<? super T>> components)OrPredicate(java.util.List<? extends Predicate<? super T>> components)
-